@import url("https://fonts.googleapis.com/css?family=Open+Sans");
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

body {
    margin: 0;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.hostspotImage .container {
    /* width: 100%;
    padding: 1em;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center; */
    position: relative;
}

/* .hostspotImage {
    position: relative;
    padding: 0;
    width: 800px;
    margin: 0 auto;
} */

.hostspotImage .lgImage {
    display: block;
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.lgHotspot {
    position: absolute;
    margin: 0;
    padding: 0;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.lgHotspot:hover .lgHotspotButton,
.lgHotspot:active .lgHotspotButton {
    border-color: #ff774c;
}

.lgHotspot:hover .lgHotspotButton:after,
.lgHotspot:active .lgHotspotButton:after {
    background-color: #ff774c;
}

.lgHotspotSelected {
    z-index: 999;
}

.lgHotspotSelected .lgHotspotLabel {
    opacity: 1;
}

.lgHotspotButton {
    height: 48px;
    width: 48px;
    padding: 0px;
    border-radius: 100%;
    border: 1px solid #ff6000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 999;
    animation: button-pulse 7s ease-in-out infinite;
    cursor: pointer;
}

.lgHotspotButton:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    content: "";
    display: block;
    height: 16.8px;
    width: 16.8px;
    border-radius: 100%;
    border: 3px solid white;
    background-color: #ff6000;
    transition: border-color 1s linear;
}

.lgHotspotLabel {
    position: absolute;
    padding: 0px 0px 5px 0px;
    width: 20em;
    max-width: 50vw;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: "Hanken Grotesk", serif;
    font-size: 14.5px;
    line-height: 1.45em;
    z-index: -1;
    border-radius: 15px;
    opacity: 0;
    transition: all 0.1s linear;
}

.lgHotspotLabel h4 {
    margin: 0;
    padding: 12px;
    background-color: #ff6000;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: white;
    border-radius: 15px 15px 0 0;
}

.lgHotspotLabel p {
    margin: 0;
    padding: 12px;
    color: #333;
}

.lgHotspotTop1 {
    top: 15%;
    left: 42%;
}

.lgHotspotTop2 {
    top: 16%;
    right: 40%;
}

.lgHotspotTop3 {
    right: 15%;
    bottom: 8%;
}

.lgHotspotTop4 {
    top: 70%;
    left: 28%;
}

.lgHotspotTop5 {
    right: 41%;
    bottom: 5%;
}


@keyframes button-pulse {
    0% {
        transform: scale(1, 1);
        opacity: 1;
    }

    40% {
        transform: scale(1.15, 1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 1;
    }
}

@media(max-width:767px) {
    .hostspotImage img.lgImage {
        height: initial;
    }

    .hostspotImage .hostspotImage {
        padding-top: 12px;
    }

    .hostspotImage .lgHotspotButton {
        height: 34px;
        width: 34px;
    }

    .hostspotImage .lgHotspotTop2 {
        top: 21%;
        right: 32%;
    }

    .hostspotImage .lgHotspotTop1 {
        top: 20%;
        left: 40%;
    }

    .hostspotImage .lgHotspotButton:after {
        width: 14px;
        height: 14px;
    }
    .hostspotImage .lgHotspotTop3 {
        right: 12%;
        bottom: 5%;
    }
   .hostspotImage .lgHotspotTop5 {
        right: 36%;
        bottom: 4%;
    }
}

@media(max-width:1440px) {
    .hostspotImage img.lgImage {
        height: initial;
    }

    .hostspotImage {
        padding-top: 12px;
    }

    .lgHotspotButton {
        height: 36px;
        width: 36px;
    }

    .lgHotspotTop2 {
        top: 22%;
        right: 40%;
    }

    .lgHotspotTop1 {
        top: 22%;
        left: 42%;
    }

    .lgHotspotTop3 {
        right: 15%;
        bottom: 13%;
    }

    .lgHotspotTop5 {
        right: 41%;
        bottom: 12%;
    }

    .lgHotspotTop4 {
        top: 67%;
        left: 28%;
    }

    .lgHotspotLabel p {
        margin: 0;
        padding: 10px;
        font-size: 12px;
        line-height: 18px;
    }
    .lgHotspotLabel h4 {
        padding: 10px;
        font-size: 16px;
    }
    .lgHotspotButton:after {
        width: 14px;
        height: 14px;
    }
}